home *** CD-ROM | disk | FTP | other *** search
/ The Very Best of Atari Inside / The Very Best of Atari Inside 1.iso / mint / mint110s / shmfs.c < prev    next >
C/C++ Source or Header  |  1994-02-11  |  15KB  |  707 lines

  1. /*
  2. Copyright 1992,1993 Eric R. Smith.
  3. Copyright 1993,1994 Atari Corporation.
  4. All rights reserved.
  5.  */
  6.  
  7. /* Shared memory file system */
  8.  
  9. #include "mint.h"
  10.  
  11.  
  12. static long    ARGS_ON_STACK shm_root    P_((int drv, fcookie *fc));
  13. static long    ARGS_ON_STACK shm_creat    P_((fcookie *dir, const char *name, unsigned mode,
  14.                     int attrib, fcookie *fc));
  15. static long    ARGS_ON_STACK shm_lookup    P_((fcookie *dir, const char *name, fcookie *fc));
  16. static long    ARGS_ON_STACK shm_getxattr    P_((fcookie *fc, XATTR *xattr));
  17. static long    ARGS_ON_STACK shm_chattr    P_((fcookie *fc, int attrib));
  18. static long    ARGS_ON_STACK shm_chown    P_((fcookie *fc, int uid, int gid));
  19. static long    ARGS_ON_STACK shm_chmode    P_((fcookie *fc, unsigned mode));
  20. static long    ARGS_ON_STACK shm_rmdir    P_((fcookie *dir, const char *name));
  21. static long    ARGS_ON_STACK shm_remove    P_((fcookie *dir, const char *name));
  22. static long    ARGS_ON_STACK shm_getname    P_((fcookie *root, fcookie *dir,
  23.                             char *pathname, int size));
  24. static long    ARGS_ON_STACK shm_rename    P_((fcookie *olddir, char *oldname,
  25.                     fcookie *newdir, const char *newname));
  26. static long    ARGS_ON_STACK shm_opendir    P_((DIR *dirh, int flags));
  27. static long    ARGS_ON_STACK shm_readdir    P_((DIR *dirh, char *nm, int nmlen, fcookie *));
  28. static long    ARGS_ON_STACK shm_rewinddir    P_((DIR *dirh));
  29. static long    ARGS_ON_STACK shm_closedir    P_((DIR *dirh));
  30. static long    ARGS_ON_STACK shm_pathconf    P_((fcookie *dir, int which));
  31. static long    ARGS_ON_STACK shm_dfree    P_((fcookie *dir, long *buf));
  32. static DEVDRV *    ARGS_ON_STACK shm_getdev    P_((fcookie *fc, long *devsp));
  33.  
  34. static long    ARGS_ON_STACK shm_open    P_((FILEPTR *f));
  35. static long    ARGS_ON_STACK shm_write    P_((FILEPTR *f, const char *buf, long bytes));
  36. static long    ARGS_ON_STACK shm_read    P_((FILEPTR *f, char *buf, long bytes));
  37. static long    ARGS_ON_STACK shm_lseek    P_((FILEPTR *f, long where, int whence));
  38. static long    ARGS_ON_STACK shm_ioctl    P_((FILEPTR *f, int mode, void *buf));
  39. static long    ARGS_ON_STACK shm_datime    P_((FILEPTR *f, short *time, int rwflag));
  40. static long    ARGS_ON_STACK shm_close    P_((FILEPTR *f, int pid));
  41.  
  42. /* dummy routines from biosfs.c */
  43. extern long    ARGS_ON_STACK null_select    P_((FILEPTR *f, long p, int mode));
  44. extern void    ARGS_ON_STACK null_unselect    P_((FILEPTR *f, long p, int mode));
  45.  
  46. static short shmtime, shmdate;
  47.  
  48. #define SHMNAME_MAX 15
  49.  
  50. typedef struct shmfile {
  51.     struct shmfile *next;
  52.     char filename[SHMNAME_MAX+1];
  53.     int uid, gid;
  54.     short time, date;
  55.     unsigned mode;
  56.     int inuse;
  57.     MEMREGION *reg;
  58. } SHMFILE;
  59.  
  60. SHMFILE *shmroot = 0;
  61.  
  62. DEVDRV shm_device = {
  63.     shm_open, shm_write, shm_read, shm_lseek, shm_ioctl, shm_datime,
  64.     shm_close, null_select, null_unselect
  65. };
  66.  
  67. FILESYS shm_filesys = {
  68.     (FILESYS *)0,
  69.     FS_LONGPATH,
  70.     shm_root,
  71.     shm_lookup, shm_creat, shm_getdev, shm_getxattr,
  72.     shm_chattr, shm_chown, shm_chmode,
  73.     nomkdir, shm_rmdir, shm_remove, shm_getname, shm_rename,
  74.     shm_opendir, shm_readdir, shm_rewinddir, shm_closedir,
  75.     shm_pathconf, shm_dfree,
  76.     nowritelabel, noreadlabel, nosymlink, noreadlink, nohardlink,
  77.     nofscntl, nodskchng
  78. };
  79.  
  80. long ARGS_ON_STACK 
  81. shm_root(drv, fc)
  82.     int drv;
  83.     fcookie *fc;
  84. {
  85.     if ((unsigned)drv == SHMDRV) {
  86.         fc->fs = &shm_filesys;
  87.         fc->dev = drv;
  88.         fc->index = 0L;
  89.         return 0;
  90.     }
  91.     fc->fs = 0;
  92.     return EINTRN;
  93. }
  94.  
  95. static long ARGS_ON_STACK 
  96. shm_lookup(dir, name, fc)
  97.     fcookie *dir;
  98.     const char *name;
  99.     fcookie *fc;
  100. {
  101.     SHMFILE *s;
  102.  
  103.     if (dir->index != 0) {
  104.         DEBUG(("shm_lookup: bad directory"));
  105.         return EPTHNF;
  106.     }
  107.  
  108. /* special case: an empty name in a directory means that directory */
  109. /* so does "." */
  110.     if (!*name || (name[0] == '.' && name[1] == 0)) {
  111.         *fc = *dir;
  112.         return 0;
  113.     }
  114.  
  115. /* another special case: ".." could be a mount point */
  116.     if (!strcmp(name, "..")) {
  117.         *fc = *dir;
  118.         return EMOUNT;
  119.     }
  120.  
  121.     for (s = shmroot; s; s = s->next) {
  122.         if (!stricmp(s->filename,name))
  123.             break;
  124.     }
  125.  
  126.     if (!s) {
  127.         DEBUG(("shm_lookup: name not found"));
  128.         return EFILNF;
  129.     } else {
  130.         fc->index = (long)s;
  131.         fc->fs = &shm_filesys;
  132.         fc->dev = SHMDRV;
  133.     }
  134.     return 0;
  135. }
  136.  
  137. static long ARGS_ON_STACK 
  138. shm_getxattr(fc, xattr)
  139.     fcookie *fc;
  140.     XATTR *xattr;
  141. {
  142.     SHMFILE *s;
  143.  
  144.     xattr->blksize = 1;
  145.     if (fc->index == 0) {
  146.         /* the root directory */
  147.         xattr->index = 0;
  148.         xattr->dev = xattr->rdev = SHMDRV;
  149.         xattr->nlink = 1;
  150.         xattr->uid = xattr->gid = 0;
  151.         xattr->size = xattr->nblocks = 0;
  152.         xattr->mtime = xattr->atime = xattr->ctime = shmtime;
  153.         xattr->mdate = xattr->adate = xattr->cdate = shmdate;
  154.         xattr->mode = S_IFDIR | DEFAULT_DIRMODE;
  155.         xattr->attr = FA_DIR;
  156.         return 0;
  157.     }
  158.  
  159.     s = (SHMFILE *)fc->index;
  160.     xattr->index = (long) s;
  161.     xattr->dev = SHMDRV;
  162.     xattr->rdev = PROC_RDEV_BASE | 0;
  163.     xattr->uid = s->uid; xattr->gid = s->gid;
  164.     if (s->reg) {
  165.         xattr->size = xattr->nblocks = s->reg->len;
  166.         xattr->nlink = s->reg->links + 1;
  167.      } else {
  168.         xattr->size = xattr->nblocks = 0;
  169.         xattr->nlink = 1;
  170.     }
  171.     xattr->mtime = xattr->ctime = xattr->atime = s->time;
  172.     xattr->mdate = xattr->cdate = xattr->adate = s->date;
  173.     xattr->mode = s->mode;
  174.     xattr->attr = (s->mode & (S_IWUSR|S_IWGRP|S_IWOTH)) ? 0 : 
  175.             FA_RDONLY;
  176.     return 0;
  177. }
  178.  
  179. static long ARGS_ON_STACK 
  180. shm_chattr(fc, attrib)
  181.     fcookie *fc;
  182.     int attrib;
  183. {
  184.     SHMFILE *s;
  185.  
  186.     s = (SHMFILE *)fc->index;
  187.     if (!s) return EACCDN;
  188.  
  189.     if (attrib & FA_RDONLY) {
  190.         s->mode &= ~(S_IWUSR|S_IWGRP|S_IWOTH);
  191.     } else if ( !(s->mode & (S_IWUSR|S_IWGRP|S_IWOTH)) ) {
  192.         s->mode |= (S_IWUSR|S_IWGRP|S_IWOTH);
  193.     }
  194.     return 0;
  195. }
  196.  
  197. static long ARGS_ON_STACK 
  198. shm_chown(fc, uid, gid)
  199.     fcookie *fc;
  200.     int uid, gid;
  201. {
  202.     SHMFILE *s;
  203.  
  204.     s = (SHMFILE *)fc->index;
  205.     if (!s)
  206.         return EACCDN;
  207.     s->uid = uid;
  208.     s->gid = gid;
  209.     return 0;
  210. }
  211.  
  212. static long ARGS_ON_STACK 
  213. shm_chmode(fc, mode)
  214.     fcookie *fc;
  215.     unsigned mode;
  216. {
  217.     SHMFILE *s;
  218.  
  219.     s = (SHMFILE *)fc->index;
  220.     if (!s)
  221.         return EINVFN;
  222.     s->mode = mode;
  223.     return 0;
  224. }
  225.  
  226. static long ARGS_ON_STACK 
  227. shm_rmdir(dir, name)
  228.     fcookie *dir;
  229.     const char *name;
  230. {
  231.     UNUSED(dir); UNUSED(name);
  232.  
  233.     return EPTHNF;
  234. }
  235.  
  236. static long ARGS_ON_STACK 
  237. shm_remove(dir, name)
  238.     fcookie *dir;
  239.     const char *name;
  240. {
  241.     SHMFILE *s, **old;
  242.  
  243.     if (dir->index != 0)
  244.         return EPTHNF;
  245.  
  246.     old = &shmroot;
  247.     for (s = shmroot; s; s = s->next) {
  248.         if (!stricmp(s->filename, name))
  249.             break;
  250.         old = &s->next;
  251.     }
  252.     if (!s)
  253.         return EFILNF;
  254.     if (s->inuse)
  255.         return EACCDN;
  256.     *old = s->next;
  257.  
  258.     s->reg->links--;
  259.     if (s->reg->links <= 0) {
  260.         free_region(s->reg);
  261.     }
  262.     kfree(s);
  263.     shmtime = timestamp;
  264.     shmdate = datestamp;
  265.     return 0;
  266. }
  267.  
  268. static long ARGS_ON_STACK 
  269. shm_getname(root, dir, pathname, size)
  270.     fcookie *root, *dir; char *pathname;
  271.     int size;
  272. {
  273.     UNUSED(root); UNUSED(dir);
  274.  
  275. /* BUG: 'size' should be used in a more meaningful way */
  276.     if (size <= 0) return ERANGE;
  277.     *pathname = 0;
  278.     return 0;
  279. }
  280.  
  281. static long ARGS_ON_STACK 
  282. shm_rename(olddir, oldname, newdir, newname)
  283.     fcookie *olddir;
  284.     char *oldname;
  285.     fcookie *newdir;
  286.     const char *newname;
  287. {
  288.     SHMFILE *s;
  289.  
  290.     if (olddir->index != 0 || newdir->index != 0)
  291.         return EPTHNF;
  292.  
  293. /* verify that "newname" doesn't exist */
  294.     for (s = shmroot; s; s = s->next)
  295.         if (!stricmp(s->filename, newname))
  296.             return EACCDN;
  297.  
  298.     for (s = shmroot; s; s = s->next)
  299.         if (!stricmp(s->filename, oldname))
  300.             break;
  301.     if (!s)
  302.         return EFILNF;
  303.  
  304.     strncpy(s->filename, newname, SHMNAME_MAX);
  305.     shmtime = timestamp;
  306.     shmdate = datestamp;
  307.     return 0;
  308. }
  309.  
  310. static long ARGS_ON_STACK 
  311. shm_opendir(dirh, flags)
  312.     DIR *dirh;
  313.     int flags;
  314. {
  315.     UNUSED(flags);
  316.  
  317.     dirh->index = 0;
  318.     return 0;
  319. }
  320.  
  321. static long ARGS_ON_STACK 
  322. shm_readdir(dirh, name, namelen, fc)
  323.     DIR *dirh;
  324.     char *name;
  325.     int namelen;
  326.     fcookie *fc;
  327. {
  328.     int i;
  329.     int giveindex = (dirh->flags == 0);
  330.     SHMFILE *s;
  331.  
  332.     s = shmroot;
  333.     i = dirh->index++;
  334.     while (i > 0 && s != 0) {
  335.         s = s->next;
  336.         --i;
  337.     }
  338.     if (!s)
  339.         return ENMFIL;
  340.  
  341.     fc->index = (long)s;
  342.     fc->fs = &shm_filesys;
  343.     fc->dev = SHMDRV;
  344.  
  345.     if (giveindex) {
  346.         namelen -= (int)sizeof(long);
  347.         if (namelen <= 0) return ERANGE;
  348.         *((long *)name) = (long)s;
  349.         name += sizeof(long);
  350.     }
  351.     if (namelen < strlen(s->filename))
  352.         return ENAMETOOLONG;
  353.     strcpy(name, s->filename);
  354.     return 0;
  355. }
  356.  
  357. static long ARGS_ON_STACK 
  358. shm_rewinddir(dirh)
  359.     DIR *dirh;
  360. {
  361.     dirh->index = 0;
  362.     return 0;
  363. }
  364.  
  365. static long ARGS_ON_STACK 
  366. shm_closedir(dirh)
  367.     DIR *dirh;
  368. {
  369.     UNUSED(dirh);
  370.     return 0;
  371. }
  372.  
  373. static long ARGS_ON_STACK 
  374. shm_pathconf(dir, which)
  375.     fcookie *dir;
  376.     int which;
  377. {
  378.     UNUSED(dir);
  379.  
  380.     switch(which) {
  381.     case -1:
  382.         return DP_MAXREQ;
  383.     case DP_IOPEN:
  384.         return UNLIMITED;    /* no internal limit on open files */
  385.     case DP_MAXLINKS:
  386.         return 1;        /* we don't have hard links */
  387.     case DP_PATHMAX:
  388.         return PATH_MAX;    /* max. path length */
  389.     case DP_NAMEMAX:
  390.         return SHMNAME_MAX;    /* max. length of individual name */
  391.     case DP_ATOMIC:
  392.         return UNLIMITED;    /* all writes are atomic */
  393.     case DP_TRUNC:
  394.         return DP_AUTOTRUNC;    /* file names are truncated */
  395.     case DP_CASE:
  396.         return DP_CASEINSENS;    /* case preserved, but ignored */
  397.     default:
  398.         return EINVFN;
  399.     }
  400. }
  401.  
  402. static long ARGS_ON_STACK 
  403. shm_dfree(dir, buf)
  404.     fcookie *dir;
  405.     long *buf;
  406. {
  407.     long size;
  408. /* "sector" size is the size of the smallest amount of memory that can be
  409.    allocated. see mem.h for the definition of ROUND
  410.  */
  411.     long secsiz = ROUND(1);
  412.  
  413.     UNUSED(dir);
  414.  
  415.     size = tot_rsize(core, 0) + tot_rsize(alt, 0);
  416.     *buf++ = size/secsiz;            /* number of free clusters */
  417.     size = tot_rsize(core, 1) + tot_rsize(alt, 1);
  418.     *buf++ = size/secsiz;            /* total number of clusters */
  419.     *buf++ = secsiz;            /* sector size (bytes) */
  420.     *buf = 1;                /* cluster size (in sectors) */
  421.     return 0;
  422. }
  423.  
  424. static DEVDRV * ARGS_ON_STACK 
  425. shm_getdev(fc, devsp)
  426.     fcookie *fc;
  427.     long *devsp;
  428. {
  429.     SHMFILE *s;
  430.  
  431.     s = (SHMFILE *)fc->index;
  432.  
  433.     *devsp = (long)s;
  434.     return &shm_device;
  435. }
  436.  
  437. /*
  438.  * create a shared memory region
  439.  */
  440.  
  441. static long ARGS_ON_STACK 
  442. shm_creat(dir, name, mode, attrib, fc)
  443.     fcookie *dir;
  444.     const char *name;
  445.     unsigned mode;
  446.     int attrib;
  447.     fcookie *fc;
  448. {
  449.     SHMFILE *s;
  450.  
  451.     UNUSED(attrib);
  452. /*
  453.  * see if the name already exists
  454.  */
  455.     for (s = shmroot; s; s = s->next) {
  456.         if (!stricmp(s->filename, name)) {
  457.             DEBUG(("shm_creat: file exists"));
  458.             return EACCDN;
  459.         }
  460.     }
  461.  
  462.     s = (SHMFILE *)kmalloc(SIZEOF(SHMFILE));
  463.     if (!s)
  464.         return ENSMEM;
  465.  
  466.     s->inuse = 0;
  467.     strncpy(s->filename, name, SHMNAME_MAX);
  468.     s->filename[SHMNAME_MAX] = 0;
  469.     s->uid = curproc->ruid;
  470.     s->gid = curproc->rgid;
  471.     s->mode = mode;
  472.     s->next = shmroot;
  473.     s->reg = 0;
  474.     s->time = shmtime = timestamp;
  475.     s->date = shmdate = datestamp;
  476.     shmroot = s;
  477.  
  478.     fc->fs = &shm_filesys;
  479.     fc->index = (long)s;
  480.     fc->dev = dir->dev;
  481.  
  482.     return 0;
  483. }
  484.  
  485. /*
  486.  * Shared memory device driver
  487.  */
  488.  
  489. /*
  490.  * BUG: file locking and the O_SHMODE restrictions are not implemented
  491.  * for shared memory
  492.  */
  493.  
  494. static long ARGS_ON_STACK 
  495. shm_open(f)
  496.     FILEPTR *f;
  497. {
  498.     SHMFILE *s;
  499.  
  500.     s = (SHMFILE *)f->devinfo;
  501.     s->inuse++;
  502.     return 0;
  503. }
  504.  
  505. static long ARGS_ON_STACK 
  506. shm_write(f, buf, nbytes)
  507.     FILEPTR *f; const char *buf; long nbytes;
  508. {
  509.     SHMFILE *s;
  510.     char *where;
  511.     long bytes_written = 0;
  512.  
  513.     s = (SHMFILE *)f->devinfo;
  514.     if (!s->reg)
  515.         return 0;
  516.  
  517.     if (nbytes + f->pos > s->reg->len)
  518.         nbytes = s->reg->len - f->pos;
  519.  
  520.     where = (char *)s->reg->loc + f->pos;
  521.  
  522. /* BUG: memory read/writes should check for valid addresses */
  523.  
  524. TRACE(("shm_write: %ld bytes to %lx", nbytes, where));
  525.  
  526.     while (nbytes-- > 0) {
  527.         *where++ = *buf++;
  528.         bytes_written++;
  529.     }
  530.     f->pos += bytes_written;
  531.     s->time = timestamp;
  532.     s->date = datestamp;
  533.     return bytes_written;
  534. }
  535.  
  536. static long ARGS_ON_STACK 
  537. shm_read(f, buf, nbytes)
  538.     FILEPTR *f; char *buf; long nbytes;
  539. {
  540.     SHMFILE *s;
  541.     char *where;
  542.     long bytes_read = 0;
  543.  
  544.     s = (SHMFILE *)f->devinfo;
  545.     if (!(s->reg))
  546.         return 0;
  547.  
  548.     if (nbytes + f->pos > s->reg->len)
  549.         nbytes = s->reg->len - f->pos;
  550.  
  551.     where = (char *)s->reg->loc + f->pos;
  552.  
  553. TRACE(("shm_read: %ld bytes from %lx", nbytes, where));
  554.  
  555.     while (nbytes-- > 0) {
  556.         *buf++ = *where++;
  557.         bytes_read++;
  558.     }
  559.     f->pos += bytes_read;
  560.     return bytes_read;
  561. }
  562.  
  563. /*
  564.  * shm_ioctl: currently, the only IOCTL's available are:
  565.  * SHMSETBLK:  set the address of the shared memory file. This
  566.  *             call may only be made once per region, and then only
  567.  *           if the region is open for writing.
  568.  * SHMGETBLK:  get the address of the shared memory region. This
  569.  *             call fails (returns 0) if SHMSETBLK has not been
  570.  *             called yet for this shared memory file.
  571.  */
  572.  
  573. static long ARGS_ON_STACK 
  574. shm_ioctl(f, mode, buf)
  575.     FILEPTR *f; int mode; void *buf;
  576. {
  577.     SHMFILE *s;
  578.     MEMREGION *m;
  579.     int i;
  580.     long r;
  581.  
  582.     s = (SHMFILE *)f->devinfo;
  583.     switch(mode) {
  584.     case SHMSETBLK:
  585.         if (s->reg) {
  586.             DEBUG(("Fcntl: SHMSETBLK already performed for %s",
  587.                 s->filename));
  588.             return ERANGE;
  589.         }
  590.         if ((f->flags & O_RWMODE) == O_RDONLY) {
  591.             DEBUG(("Fcntl: SHMSETBLK: %s was opened read-only",
  592.                 s->filename));
  593.             return EACCDN;
  594.         }
  595.     /* find the memory region to be attached */
  596.         m = 0;
  597.         for (i = curproc->num_reg - 1; i >= 0; i--) {
  598.             if (curproc->addr[i] == (virtaddr)buf) {
  599.                 m = curproc->mem[i];
  600.                 break;
  601.             }
  602.         }
  603.         if (!m || !buf) {
  604.             DEBUG(("Fcntl: SHMSETBLK: bad address %lx", buf));
  605.             return EIMBA;
  606.         }
  607.         m->links++;
  608.         s->reg = m;
  609.         return 0;
  610.     case SHMGETBLK:
  611.         if ((m = s->reg) == 0) {
  612.             DEBUG(("Fcntl: no address for SHMGETBLK"));
  613.             return 0;
  614.         }
  615.     /* check for memory limits */
  616.         if (curproc->maxmem) {
  617.             if (m->len > curproc->maxmem - memused(curproc)) {
  618.                 DEBUG(("Fcntl: SHMGETBLK would violate memory limits"));
  619.                 return 0;
  620.             }
  621.         }
  622.         return (long)attach_region(curproc, m);
  623.     case FIONREAD:
  624.     case FIONWRITE:
  625.         if (s->reg == 0) {
  626.             r = 0;
  627.         } else {
  628.             r = s->reg->len - f->pos;
  629.             if (r < 0) r = 0;
  630.         }
  631.         *((long *)buf) = r;
  632.         return 0;
  633.     default:
  634.         DEBUG(("shmfs: bad Fcntl command"));
  635.     }
  636.     return EINVFN;
  637. }
  638.  
  639. static long ARGS_ON_STACK 
  640. shm_lseek(f, where, whence)
  641.     FILEPTR *f; long where; int whence;
  642. {
  643.     long newpos, maxpos;
  644.     SHMFILE *s;
  645.  
  646.     s = (SHMFILE *)f->devinfo;
  647.  
  648.     if (s->reg)
  649.         maxpos = s->reg->len;
  650.     else
  651.         maxpos = 0;
  652.  
  653.     switch(whence) {
  654.     case 0:
  655.         newpos = where;
  656.         break;
  657.     case 1:
  658.         newpos = f->pos + where;
  659.         break;
  660.     case 2:
  661.         newpos = maxpos + where;
  662.         break;
  663.     default:
  664.         return EINVFN;
  665.     }
  666.  
  667.     if (newpos < 0 || newpos > maxpos)
  668.         return ERANGE;
  669.  
  670.     f->pos = newpos;
  671.     return newpos;
  672. }
  673.  
  674. static long ARGS_ON_STACK 
  675. shm_datime(f, timeptr, rwflag)
  676.     FILEPTR *f;
  677.     short *timeptr;
  678.     int rwflag;
  679. {
  680.     SHMFILE *s;
  681.  
  682.     s = (SHMFILE *)f->devinfo;
  683.     if (rwflag) {
  684.         s->time = *timeptr++;
  685.         s->date = *timeptr;
  686.     } else {
  687.         *timeptr++ = s->time;
  688.         *timeptr = s->date;
  689.     }
  690.     return 0;
  691. }
  692.  
  693. static long ARGS_ON_STACK 
  694. shm_close(f, pid)
  695.     FILEPTR *f;
  696.     int pid;
  697. {
  698.     SHMFILE *s;
  699.  
  700.     UNUSED(pid);
  701.     if (f->links <= 0) {
  702.         s = (SHMFILE *)f->devinfo;
  703.         s->inuse--;
  704.     }
  705.     return 0;
  706. }
  707.